home *** CD-ROM | disk | FTP | other *** search
/ Graphics Plus / Graphics Plus.iso / general / fractal / kaos.lha / complib / get_func.c < prev    next >
Encoding:
C/C++ Source or Header  |  1989-11-18  |  252 b   |  16 lines

  1. /*
  2. ### compute functions in primary coordinates ###
  3.  
  4. Input: x: in primary coords
  5. Output: f: function values
  6. */
  7.  
  8. void get_func(f,x,p,t,dim)
  9. int dim;
  10. double f[],x[],p[],t;
  11. {
  12.     extern int stop;
  13.     extern int (*func_p)();
  14.     stop = (int) func_p(f,x,p,t,dim);
  15. }
  16.